Linux Networking Internals 4 - Network Device Statistics Network Device Statisticsnetdev_rx_stat, its elements are of type netif_rx_stats 123456789101112131415struct netif_rx_stats netdev_rx_stat[NR_CPUS];struct netif_rx_stats{ unsigned total; unsigned dropped; unsigned time_squeeze; unsigned throttled; unsigned fastroute_hit; unsigned fastroute_success; unsigned fastroute_defer; unsigned fastroute_deferred_out; unsigned fastroute_latency_reduction; unsigned cpu_collision;} __ _ _cacheline_aligned; 2017-07-20 Linux Networking Internals Linux